Remove unused type aliases
authorSeo Sanghyeon <sanxiyn@gmail.com>
Tue, 15 Nov 2016 12:49:41 +0000 (21:49 +0900)
committerSeo Sanghyeon <sanxiyn@gmail.com>
Tue, 15 Nov 2016 12:49:41 +0000 (21:49 +0900)
src/cargo/core/resolver/mod.rs

index 9cc723d69dc90e747255626018bd22637d94fe7a..fab8934bc6ac4fbfd997f8a6c160a9a450e66831 100644 (file)
@@ -98,11 +98,6 @@ pub enum Method<'a> {
     },
 }
 
-// Err(..) == standard transient error (e.g. I/O error)
-// Ok(Err(..)) == resolve error, but is human readable
-// Ok(Ok(..)) == success in resolving
-type ResolveResult<'a> = CargoResult<CargoResult<Box<Context<'a>>>>;
-
 // Information about the dependencies for a crate, a tuple of:
 //
 // (dependency info, candidates, features activated)